Socket
Socket
Sign inDemoInstall

good-listener

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

good-listener

A more versatile way of adding & removing event listeners


Version published
Weekly downloads
1.5M
increased by1.76%
Maintainers
1
Weekly downloads
 
Created

What is good-listener?

The 'good-listener' npm package is a utility for managing event listeners in a more efficient and cleaner way. It provides a simple API to add and remove event listeners, ensuring that you can easily manage and clean up listeners to avoid memory leaks and other issues.

What are good-listener's main functionalities?

Add Event Listener

This feature allows you to add an event listener to a DOM element. The `listen` function returns a function that can be called to remove the event listener, making it easy to manage and clean up listeners.

const listen = require('good-listener');
const button = document.querySelector('button');
const removeListener = listen(button, 'click', () => {
  console.log('Button clicked!');
});

Remove Event Listener

This feature demonstrates how to remove an event listener that was previously added. The `listen` function returns a function that, when called, removes the event listener, ensuring that you can easily clean up listeners when they are no longer needed.

const listen = require('good-listener');
const button = document.querySelector('button');
const removeListener = listen(button, 'click', () => {
  console.log('Button clicked!');
});
// Later in the code
removeListener();

Other packages similar to good-listener

Keywords

FAQs

Package last updated on 28 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc